home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 8 / Power CD-ROM 8.iso / prgmming / skelet / skelext.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-15  |  1.4 KB  |  48 lines

  1.  
  2. //////////////////////////////////////////////////////////////////////////////
  3. //
  4. // Filename:     skelext.hpp
  5. //
  6. // Description:  Skeleton Visual Basic Custom Control.
  7. //
  8. //               External declarations for the control.
  9. //
  10. // Date Created: <Date>
  11. //
  12. // Author:       <Your Name>
  13. //
  14. // Copyright (c) <Your Company Name> 1994
  15. //
  16. //               Portions of this product are based on original
  17. //                  source code from Anton Software Limited.
  18. //
  19. //////////////////////////////////////////////////////////////////////////////
  20.  
  21. #ifndef SKELEXT_HPP
  22. #define SKELEXT_HPP
  23.  
  24. //////////////////////////////////////////////////////////////////////////////
  25. //
  26. // External Data Declarations
  27. //
  28. //////////////////////////////////////////////////////////////////////////////
  29.  
  30. extern HANDLE         hmodDLL;
  31. extern LPSTR          lpstrAboutBoxParent;
  32. extern LPSTR          lpstrMsgBoxTitle;
  33. extern MODELINFO NEAR modelinfoSkeleton;
  34. extern MODEL NEAR     modelSkeleton;
  35.  
  36. //////////////////////////////////////////////////////////////////////////////
  37. //
  38. // External Function Declarations
  39. //
  40. //////////////////////////////////////////////////////////////////////////////
  41.  
  42. // TO DO: If you create any general purpose supporting modules, place external
  43. //        declarations for the non-static functions they contain in this
  44. //        section.
  45.  
  46. #endif // SKELEXT_HPP
  47.  
  48.